home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / GETS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  192 b   |  9 lines

  1. /*  gets.c, from p. 443 of Turbo C Bible  */
  2. #include <stdio.h>
  3. main()
  4. {
  5.     char string[81];
  6.     printf("Enter a line: ");
  7.     gets(string);
  8.     printf("You entered:%s\n", string);
  9. }